home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / flilib.zip / FLISRC.ZIP / JEXISTS.C < prev    next >
C/C++ Source or Header  |  1989-11-16  |  204b  |  18 lines

  1.  
  2. #include "jlib.h"
  3.  
  4. /* Does file exist? */
  5. Boolean dos_exists (title)
  6. char *title;
  7. {
  8. int f;
  9.  
  10. if ((f = dos_open (title, DOS_READ_ONLY))!=0)
  11.     {
  12.     dos_close (f);
  13.     return(1);
  14.     }
  15. return(0);
  16. }
  17.  
  18.